home *** CD-ROM | disk | FTP | other *** search
- //************************************************************************
- //
- // Module: echo.h
- //
- // Purpose:
- // Declares C access function for echoc.exe
- //
- //************************************************************************
- //
- // Written by Dart Communication Application Programming Group.
- // Copyright (c) 1994 Dart Communications. All Rights Reserved.
- //
- //************************************************************************
-
- #define EDITWND 1
-
- // function prototypes (private)
-
- BOOL InitApplication() ;
- BOOL InitInstance( int ) ;
- void Display (LPCSTR Message);
- BOOL NEAR GoModalDialogBoxParam( HINSTANCE, LPCSTR, HWND, DLGPROC, LPARAM ) ;
-
-
- // function prototypes (public)
- #ifdef __cplusplus
- extern "C" {
- #endif
- LRESULT CALLBACK WndProc( HWND, UINT, WPARAM, LPARAM ) ;
- BOOL CALLBACK AboutDlgProc( HWND, UINT, WPARAM, LPARAM ) ;
- #ifdef __cplusplus
- }
- #endif
-